home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
graphics
/
mpeg2animv1.3
/
archive
/
rend105.lha
/
INSTALL
next >
Wrap
Text File
|
1992-07-08
|
2KB
|
61 lines
; Script to install libraries from this disk into your current
; LIBS: directory.
Echo " "
Echo "This script will install three libraries into your current"
Echo "LIBS: directory which are used by the Rend24 program."
Echo "They are hame.library, dctv.library, and arp.library."
Echo " "
Echo "Arp.library is required for Rend24's built-in front end."
Echo "Hame.library is required to render HAM-E images."
Echo "Dctv.library is required to render DCTV images."
Echo " "
Ask "Do you want to install these libraries?"
Echo " "
If WARN
Copy :Libs/#?.library LIBS:
Echo "Library installation complete."
Else
Echo "Libraries not installed."
EndIf
Echo " "
Echo "Rend24 may now be run directly from Workbench. You can"
Echo "put it anywhere you like by simply dragging its icon to"
Echo "a drawer on, for example, your hard drive. If you plan"
Echo "on running Rend24 from CLI a lot, you might consider"
Echo "placing it in your C: directory."
Echo " "
Echo "Would you like to copy the Rend24 program to your"
Ask "C: directory?"
Echo " "
If WARN
; Copy programs to C: directory.
Copy :Rend24 C:
Copy :Rend24.info C:
Echo "Program copy complete."
Else
Echo "Programs not copied."
EndIf
Echo " "
Echo "Rend24 uses a program called ShowAnim to display animations"
Echo "and pictures. In order to use this feature, you will need"
Echo "to copy ShowAnim to your C: directory. If you want to use"
Echo "a different animation player, you do not need to copy ShowAnim,"
Echo "but you will need to edit the Rend24 config file (see the"
Echo "documentation)."
Echo " "
Ask "Do you want to copy ShowAnim to your C: directory?"
Echo " "
If WARN
; Copy ShowAnim
Copy c/ShowAnim C:
Echo "ShowAnim copy complete."
Else
Echo "ShowAnim not copied."
EndIf
Echo " "